home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / word / browse1.zip / BROWSE.DOC < prev   
Text File  |  1993-01-04  |  4KB  |  90 lines

  1.  
  2.  
  3.           Browse                                 Charles Petzold
  4.           Command                        PC Magazine Vol 5, No 6
  5.               Copyright 1986 Ziff-Davis Publishing Company
  6.           _______________________________________________________
  7.  
  8.           Purpose   Permits scrolling forward and backward
  9.                     throughout a file without use of a word
  10.                     processing program.
  11.  
  12.           Format:   BROWSE [d:][path]filename[.ext] [/W]
  13.  
  14.           Remarks:  The DOS TYPE command does not permit you to
  15.                     scroll ahead or go back to previously
  16.                     displayed material in a file.  It also exits
  17.                     at the first instance of Ctrl-Z (ASCII 26,
  18.                     conventionally used as an End-of-File
  19.                     marker), making it impossible to scan binary
  20.                     (e.g. .COM) files for error messages,
  21.                     copyright notices, and the like.
  22.  
  23.                     BROWSE.COM overcomes these shortcomings,
  24.                     giving you the chance to go immediately to
  25.                     the top or to the end of a file (the Home and
  26.                     End keys, respectively), to the succeeding or
  27.                     previous screen (PgUp and PgDn), or to move
  28.                     up or down a line at a time (Up Arrow or Down
  29.                     Arrow).  To return to DOS, simply press the
  30.                     Escape key or Ctrl-Break.
  31.  
  32.                     Wide displays, e.g. a spreadsheet file, are
  33.                     not broken at 80 columns, as with TYPE.
  34.                     BROWSE ignores carriage returns (ASCII 13),
  35.                     breaking lines only on line feeds (ASCII 10).
  36.                     The Right Arrow key scrolls the display to
  37.                     the right in eight-character increments (see
  38.                     Note 3 below) to view wide displays; the Left
  39.                     Arrow key returns you immediately to column
  40.                     zero.
  41.  
  42.                     BROWSE expands tab characters (ASCII 9) to
  43.                     the next eight-character boundary, but does
  44.                     no other character processing unless the /W
  45.                     parameter is specified.  Use of the /W option
  46.                     permits using BROWSE with WordStar files.
  47.  
  48.                     Notes:
  49.  
  50.                     1.   BROWSE can run under TopView or Windows;
  51.                          specify "writes directly to screen" in
  52.                          the .PIF and use the default 52K memory
  53.                          requirement.  (The program actually
  54.                          requires only approximately 33K to run.)
  55.                          For the TopView PIF, specify that the
  56.                          program intercepts Interrupt 23h.
  57.  
  58.                     2.   BROWSE is compatible with the IBM
  59.                          monochrome, CGA, and EGA displays, and
  60.                          will even run in the EGA 43-line mode.
  61.                          Files prepared with word-processors that
  62.                          employ a one-line-per-paragraph format
  63.                          (such as Microsoft Word and XyWrite) may
  64.                          to require excessive right scrolling,
  65.                          however.
  66.  
  67.                     3.   BROWSE.COM can be patched with DEBUG so
  68.                          that its right-scroll jumps by more than
  69.                          the default eight characters.  The
  70.                          address to patch is 10F in the .COM
  71.                          file.  After entering DEBUG BROWSE.COM
  72.                          type
  73.  
  74.                               E 10F
  75.  
  76.                          and the default value (08h) will appear.
  77.                          Type the desired hexadecimal number (28
  78.                          for a 40-column increment; 50 for an 80-
  79.                          column increment) and press <Enter>.
  80.                          Then type W<Enter> to write to the disk
  81.                          and Q<Enter> to quit DEBUG.
  82.  
  83.                     4.   Requires DOS 2.0 or later.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.